home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 21
/
CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso
/
CUCD
/
Utilities
/
Identify
/
arexx
/
functionname.ify
< prev
next >
Wrap
Text File
|
1997-04-23
|
763b
|
28 lines
/*****************************************************************
** **
** functionname.ify rexxidentify.library demonstration **
** **
******************************************************************
**
** (c) 1997 by Richard Körber -- All Rights Reserved
**
** You may use this example freely for your own programs.
**
*/
/* Add the library functions */
CALL AddLib("/libs/rexxidentify.library",0,-30,0)
SAY "Enter library/device/resource name (e.g. exec.library)"
PULL libname
SAY "Enter function offset (e.g. -456)"
PULL offset
SAY "The function name is '"|| ID_Function(libname,offset) ||"'."
SAY ""
EXIT